home *** CD-ROM | disk | FTP | other *** search
- // Persistence of Vision Raytracer v2.0
- // Shape Test file
-
- include "colors.inc"
-
- camera {
- location <0.0, 13, -21 >
- look_at <0, 8, 0>
- }
-
- object {
- light_source { <40, 100, -100>
- color White
- }
- }
-
- include "plant.inc"
- object{
- plant
- //texture{YourTexture}
- // for -t option
- }
-
- object { plane { <0.0, 1.0, 0.0>, 0.0 }
- pigment{ color red 1 green 0.75 blue 0.3}
- finish{ ambient 0.3 diffuse 0.7}
- }
-
-